Note
Click here to download the full example code
DefectMap defectmap
¶
Wafer DefectMap with Pareto Subplot
DefectMap is aimed for defect analysis, beside the defect distribution by cat_heatmap
, yield summary and top defect statistics are also applied by using inset pie chart and bar chart subplot.
Unlike in the cat_heatmap
, categories are ordered by unique count in default. defectmap
use the ‘OK’ as the top category and set it with lightgreen
color. You can UAI other codes eg. ‘BINA’,’BINB’ as OK
by update the ok_codes
.
import random
from wfmap.data import load_data
from wfmap import defectmap
data = load_data()
fig = defectmap(data, 'DEFECT')
Out:
/Users/xlhaw/opt/anaconda3/envs/py39a/lib/python3.9/site-packages/wfmap-1.0.4-py3.9.egg/wfmap/__init__.py:209: FutureWarning: The series.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
Above example used the default defect code from sample data, you change it to more reader-friendly and meaningful remark by modify the code_dict
as below.
code_dict = {}
for code in data['DEFECT'].unique():
if code.startswith('S'):
code_dict[code] = random.choice(
['QST Rej', 'HDD Rej', 'DP Rej', 'VM Rej'])
fig2 = defectmap(data, 'DEFECT', code_dict=code_dict)
Total running time of the script: ( 0 minutes 0.526 seconds)
Download Python source code: plot_3_defectmap.py